home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19941031-19941221 / 000267_news@columbia.edu_Thu Nov 24 18:12:09 1994.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05296
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 24 Nov 1994 13:12:12 -0500
  3. Received: by apakabar.cc.columbia.edu id AA23691
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 24 Nov 1994 13:12:11 -0500
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: disabling \ translation
  9. Date: 24 Nov 1994 18:12:09 GMT
  10. Organization: Columbia University
  11. Lines: 27
  12. Message-Id: <3b2l1p$n49@apakabar.cc.columbia.edu>
  13. References: <Czpo7K.3Jx@news.hawaii.edu>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <Czpo7K.3Jx@news.hawaii.edu>,
  18. Antonio Querubin <tony@mpg.phys.hawaii.edu> wrote:
  19. >I have a kermit script which reads a line at a time from a text file and
  20. >outputs it to the active com port.
  21. >
  22. Using which Kermit program, and what version?
  23.  
  24. When commenting on the behavior of a software program, it is always a
  25. good idea to say which program it is, and which version of it.
  26.  
  27. >The problem I have is that some of the text in the file consists of the \
  28. >character followed by numbers.  When the line is output to the com port
  29. >it will sometimes transmit translated characters rather than the original
  30. >text from the file.  ...  Is there any way of disabling the \ translation
  31. >feature temporarily in a script?
  32. >
  33. Yes.  In C-Kermit 5A(190), there is "set command quoting off".  Also, in
  34. both C-Kermit 5A (188-190) and MS-DOS Kermit 3.14 (but not earlier), you
  35. should be able to do something like this:
  36.  
  37.   read \%a
  38.   output \fcontents(\%a)
  39.  
  40. By the way, a similar kind of problem occurs whenever you need to refer
  41. to DOS-like pathnames in a Kermit script.  The solutions are the same.
  42.  
  43. - Frank